func sync/atomic.StoreInt32

15 uses

	sync/atomic (current package)
		doc.go#L199: func StoreInt32(addr *int32, val int32)
		type.go#L77: func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }

	google.golang.org/grpc/internal/channelz
		funcs.go#L44: 	atomic.StoreInt32(&curState, 1)
		funcs.go#L49: 		atomic.StoreInt32(&curState, 0)
		trace.go#L39: 	atomic.StoreInt32(&maxTraceEntry, i)
		trace.go#L45: 	atomic.StoreInt32(&maxTraceEntry, defaultMaxTraceEntry)

	google.golang.org/grpc/internal/idle
		idle.go#L123: 		atomic.StoreInt32(&m.activeSinceLastTimerCheck, 0)
		idle.go#L198: 		atomic.StoreInt32(&m.activeSinceLastTimerCheck, 1)
		idle.go#L211: 	atomic.StoreInt32(&m.activeSinceLastTimerCheck, 1)
		idle.go#L272: 	atomic.StoreInt32(&m.closed, 1)

	google.golang.org/protobuf/internal/impl
		encode.go#L67: 			atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), int32(size+1))
		encode.go#L123: 			atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), 0)
		encode.go#L128: 			atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), int32(size+1))
		lazy.go#L33: 		atomic.StoreInt32(&enableLazy, 1)
		lazy.go#L36: 	atomic.StoreInt32(&enableLazy, 0)